home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 002 / dved.lqr / dved.lbr / dved602.doc < prev   
Text File  |  2011-01-30  |  9KB  |  205 lines

  1. The following information has been extracted from DVED602's internal
  2. reference manual.  I have taken the liberty to do this so that this file
  3. can be made available on BBS systems, for inspection before down-loading
  4. the whole .COM file.  I personally have been using Dr. Dewar's editors for
  5. close to ten years.  I find them to be easy to use, have the right choice
  6. of options, and ARE VERY FAST.    It is my opinion that this one beats all
  7. those other micro and mainframe editors--hands down!  And the best part
  8. for you is that this particular one also happens to be FREE!
  9.  
  10. This works on the IBM PC and XT, and most look-a-likes, but gets its
  11. speed by going directly into the memory of the monochrome display, so it
  12. might not work if you have a not-so-a-like.
  13.  
  14. Down-load the complete editor -- It contains all the details you will need.
  15.  
  16.                     - Alan Cox
  17.  
  18.  
  19.  D E W A R   V I S U A L   E D I T O R     R E F E R E N C E   M A N U A L
  20.  
  21. INTRODUCTION
  22.  
  23. DVED version 6.02 is a screen oriented editor for the IBM/PC. It requires 64K
  24. memory using DOS 1.1 or 96K using DOS 2.0, and either the color or monochrome
  25. display card. DVED is a product of Realia Inc., written by Robert B. K. Dewar,
  26. and is copyrighted, 1983. It is distributed at no charge, and you are encouraged
  27. to distribute copies of this program to other PC users. Copies of the program
  28. may not be sold or included as part of the distribution of any other product.
  29. However, IBM PC clubs and similar organizations may distribute copies at a
  30. nominal charge for media and copying costs.
  31.  
  32. This manual is actually maintained as part of the editor file. Entering the
  33. command DVED (with no parameters) causes entry into the help facility which
  34. displays this manual in an interactive manner. In addition, pressing Ctrl F1
  35. during editing also gives help, although on a 64K machine only limited help is
  36. available during editing.
  37.  
  38.  
  39. GENERAL ORGANIZATION
  40.  
  41. DVED works with an input file and an output file. In the case where only an
  42. input file name is given, a temporary file is used for the output during the
  43. edit and renamed when the edit terminates.
  44.  
  45. The editing process basically consists of a sequential copy operation. Lines are
  46. read from the input file to the bottom of the screen, and written from the top
  47. of the screen to the output file. The screen acts as a window through which all
  48. the data passes, and where it can be edited as it passes. This editing can
  49. involve either the simple retyping of text on top of the old text, or the use of
  50. a variety of special editing functions.
  51.  
  52. DVED allows the operator to move backward in the file, through a region already
  53. edited and written to the output file. This is done by reading the lines back
  54. from the output file, and writing them to a work file called the hold file. On
  55. resuming editing in a forward direction, the data which has been saved in the
  56. hold file is read back, possibly reedited, and rewritten to the output file.
  57.  
  58.  
  59. DOS LOAD COMMANDS
  60.  
  61. To use the editor, enter one of the following two commands:
  62.  
  63.   DVED file
  64.   DVED infile outfile
  65.  
  66. The first form of the command operates like EDLIN. DVED will create a new file
  67. if none already exists, or edit an existing file, with the original version
  68. being renamed with the extension .BAK. The second form of the command edits an
  69. existing input file, creating a new file with the indicated output file name. In
  70. this case no BAK file is created.
  71.  
  72. FUNCTION KEY USAGE
  73.  
  74. F1  not used           ALT F1  End edit          Arrows    Move cursor
  75. F2  not used           ALT F2  Quit edit          Home    Cursor home
  76. F3  Open new line       ALT F3  Open indent line   PgDn    Copy page
  77. F4  Delete to buffer       ALT F4  Undelete line      PgUp    Uncopy page
  78. F5  Reformat line       ALT F5  Reformat paragraph End    Repeat command
  79. F6  Select range       ALT F6  Unselect range     Ctrl ->    Forward word
  80. F7  Copy from buffer       ALT F7  Clear buffer       Ctrl <-    Back word
  81. F8  Copy to buffer       ALT F8  Append to buffer   Ctrl End    Erase end line
  82. F9  Duplicate character    ALT F9  Duplicate line     Ctrl PgDn Insert Page
  83. F10 Duplicate field       ALT F10 Erase field          ESC    Enter command
  84.  
  85. Num -        Delete word    Num +       Next line      Shift Up      Top of screen
  86. Shift Num - Uncopy line    Shift Num + Copy line      Shift Down  Bot of screen
  87. Ins        Insert mode    Del           Delete char    Shift ->      End of line
  88. Shift Ins   Insert in line Shift Del   Delete in line Shift <-      Start of line
  89. Tab        Tab forward    Enter       Enter line     Backspace   Backspace
  90. Shift Tab   Tab backward   Shift Enter Indent line    Ctrl Enter  Split line
  91.  
  92. In help mode, press function key for details of use.
  93.  
  94.  
  95. USE OF ALT LETTER KEYS
  96.  
  97. ALT C - Clear tab
  98. ALT L - Set/reset left margin
  99. ALT M - Set/reset mixed case mode
  100. ALT T - Set tab
  101.  
  102. In help mode, press ALT and letter key for details of use.
  103.  
  104. COMMAND PROCESSING
  105.  
  106. Commands are entered by pressing the ESC key. This will blank the message line
  107. at the bottom of the screen for entry of a command. During command entry, the
  108. left and right cursor keys and backspace keys can be used, as well as Ins and
  109. Del in the normal manner. In addition Home resets the cursor to the start of the
  110. line, and Ctrl End (ERASE END LINE) is active. Entry of a command is terminated
  111. by pressing the Enter key. Pressing the ESC key during entry of a command causes
  112. the command to be abandoned. See also description of REPEAT COMMAND (End key)
  113. function. Commands start with a single letter (upper or lower case):
  114.  
  115.   B - Search backwards to key     N - Search to line number
  116.   D - Delete lines         R - Replace string
  117.   G - Global replace string     S - Search forwards to key
  118.   H - Hex data entry         T - Set tabs
  119.   M - Merge file         W - Set word definition
  120.  
  121. In HELP mode, press the upper case command letter for a detailed description of
  122. the command.
  123.  
  124.  
  125. OPERATION OF DVED WITH A MOUSE
  126.  
  127. DVED can be operated fully from the keyboard. However, it contains features
  128. which allow the use of the PC-MOUSE supplied by Mouse Systems Corp. In help
  129. mode, press the s key for details on the required setup file.
  130.  
  131.  
  132. RECOVERY MODE
  133.  
  134. When an edit is in progress, DVED records keystrokes in a file d:xxx.JOU where
  135. xxx is the output file name, and d is the current drive. If the edit bombs (disk
  136. full, power failure, reboot etc), then the edit can be replayed from this file
  137. by repeating the edit with the /R switch:
  138.  
  139.   DVED    infile/R       (see reference)
  140.  
  141. HANDLING OF TAB CHARACTERS
  142.  
  143. If DVED encounters tab characters in the input, they are expanded to blanks,
  144. according to the standard IBM/DOS conventions.During the edit operation itself,
  145. the tab key may be used to move the cursor across the screen, just as though the
  146. cursor movement keys had been used. The default tab settings (which may be
  147. changed during the edit) are:
  148.  
  149.   Extension is .COB    T6,10,14,18,22,44,67
  150.   Extension is .ASM    T11,18;40
  151.   All other files      T9,17,25,33,41,49,57,65,73
  152.  
  153. For .COB files, mixed case mode is also set as the default (see ALT M key). Note
  154. that the tabs for .COB assume that the first 6 columns are not present during
  155. the edit.
  156.  
  157. Normally DVED uses tabs in the output file where possible to compress blanks and
  158. reduce the space required for the output file, according to standard DOS
  159. conventions, except that lines containing quote characters are never compressed.
  160. If it is necessary to generate the file without any tab characters at all (using
  161. blanks instead), the /N switch may be specified on the DVED load line:
  162.  
  163.   DVED file/N     or    DVED ifile ofile/N
  164.  
  165.  
  166. OTHER INTERESTING PROGRAMS AVAILABLE
  167.  
  168. DVED is one of the DEWAR utilities, which also include the following:
  169.  
  170.   DAVED   Advanced version of DVED (many additional features)
  171.   DVEX      Examine file (like DVED, input file only, horizontal scrolling)
  172.   DCOMP   Compare text files showing difference in lines
  173.   DXF      Examine/modify file data at sector level
  174.   DLOF      List object file in symbolic form
  175.   DSS      Steady scroll (stop annoying scroll flicker on color screen)
  176.   DCOPY   Compress/decompress text file
  177.  
  178. The price for the whole set of utilities (all the above plus many others) is
  179. $40. Unlike DVED, these programs are proprietary and you should get your own
  180. copy by sending a check or money order to:
  181.  
  182.   Robert B. K. Dewar
  183.   73 5th Ave.
  184.   New York, NY 10003
  185.  
  186. OTHER REALIA PRODUCTS
  187.  
  188. SPACEMAKER (TM)   $75.00
  189.  
  190. A utility which saves disk space and program load time for .EXE and .COM files
  191. by compressing out binary zeroes and compacting control information.
  192.  
  193. VT TERMULATOR (TM)   $95.00
  194.  
  195. A full feature emulation of the DEC VT100 terminal, with transmission speeds up
  196. to 9600 Baud and file transfer facilities.
  197.  
  198. To order either of these utilities, send a check to:
  199.  
  200.   Realia Inc.
  201.   10 S. Riverside Plaza
  202.   Chicago, IL 60606
  203.  
  204. or send for information on these and other Realia products.
  205.